home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ WinXP UnPnP.xpl < prev    next >
Text File  |  2002-01-04  |  2KB  |  63 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH 1"="Network\Security\Universal Plug&Play"
  5. "UIPATH 2"="System\Security\Services"
  6. "NAME"="Universal Plug&Play Services"
  7. "VERSION"="1.00"
  8. "OSVERSION"="000001"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Enable SSDP UnPnP Service"
  11. "TEXT 2"="Enable UPNPHost UnPnP Service"
  12. "DESCRIPTION 1"="By default, Windows XP support a service known as "Universal Plug&Play" (UnPnP in short). This service is intend to support self-connecting and self-configurating devices that communicate using standard LAN protocols. However, today there are no UnPnP devices available so these services are not needed."
  13. "DESCRIPTION 2"="And, to make UnPnP even more unneded, the first release of Windows XP had a BIG problem with the UnPnP services since they allowed an intruder to take over your machine. NOTE: Microsoft has released an security-fix for this in the meantime."
  14. "DESCRIPTION 3"="To make it short: You don't need those services and they are a security risk - Simply deactivate them. If you ever decide you need them, you can activate them here again."
  15. "DESCRIPTION 4"="For more information about UnPnP, check our Gibson Research Corp. at http://grc.com/UnPnP/UnPnP.htm"
  16. "AUTHOR"="Xteq Systems"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"="F*** stupid UnPnP!!!! "
  20.  
  21.  
  22.  
  23. sP1="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SSDPSRV\Start"
  24. sP2="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\upnphost\Start"
  25.  
  26. Sub Plugin_Initialize 
  27.  i=RegReadValue(sP1)
  28.  if i<>4 then SetUIElement 1,true
  29.  
  30.  i=RegReadValue(sP2)
  31.  if i<>4 then SetUIElement 2,true
  32. End Sub
  33.  
  34.  
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  b=GetUIElement(1)
  38.  Call ae(b,sP1)
  39.  
  40.  b=GetUIElement(2)
  41.  Call ae(b,sP2)
  42.  
  43.  Restart
  44. End Sub
  45.  
  46.  
  47. Sub ae(val,Path)
  48.  if val=true then
  49.     Call RegWriteValue(path,3,2)
  50.  else
  51.     Call RegWriteValue(path,4,2)
  52.  end if
  53. end Sub
  54.  
  55.  
  56.  
  57.  
  58. Sub Plugin_Terminate 
  59. End Sub
  60.  
  61.  
  62.  
  63.